home *** CD-ROM | disk | FTP | other *** search
/ FishMarket 1.0 / FishMarket v1.0.iso / fishies / 201-225 / disk_222 / plplot / src / source.zoo / plytik.c < prev    next >
C/C++ Source or Header  |  1989-05-15  |  200b  |  11 lines

  1. #include "plplot.h"
  2.  
  3. void plytik(x,y,left,right)
  4. int x, y, left, right;
  5. {      
  6.       draphy(x,y);
  7.       if (left != 0) draphy(x-left,y);
  8.       if (right != 0) draphy(x+right,y);
  9.       draphy(x,y);
  10. }
  11.